/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.wrapper {
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}


/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    /* Space between logo and toggle */
    align-items: center;
    padding: 10px 30px;
    position: absolute;
    /* Positioned over the carousel initially */
    top: 0;
    z-index: 1000;
    width: 100%;
    /* Full width to align with carousel */
    background-color: transparent;
    /* Transparent on top of carousel */
    color: #333;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.sticky {
    position: sticky;
    /* Becomes sticky after scrolling */
    background-color: #fff;
    /* Add a solid background on scroll */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

header .logo img {
    width: 70px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}


header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

header nav ul li a:hover {
    color: #1878f3;
    transform: scale(1.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .menu-toggle {
        float: left;
    }

    header nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .carousel-overlay h2 {
        font-size: 2.5rem;
    }

    .carousel-overlay p {
        font-size: 1.5rem;
    }
}



/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    /* Hidden by default on larger screens */
    font-size: 2rem;
    background: none;
    border: none;
    color: #1878f3;
    cursor: pointer;
    margin-left: auto;
    /* Aligns the toggle to the far right */
}

/* Show the menu when active */
.menu.active {
    display: flex;
}

.logo {
    display: flex;
    align-items: center;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Visible on smaller screens */
    }

    header {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        /* Logo on left, toggle on right */
    }

    nav ul {
        flex-direction: column;
        /* Dropdown for menu items */
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        z-index: 1000;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    }
}




/* Carousel Styling */
.carousel {
    width: 100%;
    height: 80vh;
    /* Full viewport height */
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-80%, -50%);
    text-align: start;
    color: #fff;
}

.carousel-overlay h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #FFF;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    padding-bottom: 20px;
    border-bottom: 1px solid #FFF;
}

.carousel-overlay p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFF;
    /* color: rgba(255, 255, 255, 0.8); */
    margin-top: 20px;
}



/* Services */

/* Services Section Styles */
.services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.services-section h2 {
    font-size: 45px;
    margin-bottom: 20px;
    color: #333;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 400px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0077cc;
}

.service-card p {
    font-size: 1rem;
    color: #777;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
}


/* contactus */
/* Contact Section */
.contact-section {
    background: linear-gradient(to right, #0077cc, #00c4cc);
    color: #fff;
    padding: 60px 20px;

}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 45px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #f1f1f1;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Form Section */
.contact-form {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 400px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0077cc;
}

.contact-form .form-field {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0077cc;
    box-shadow: 0 0 5px rgba(0, 119, 204, 0.5);
}

.contact-form .submit-btn {
    background: #0077cc;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
    background: #005fa3;
}

/* Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 400px;
}

.info-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-box:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
}

.info-box i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.info-box h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.info-box p {
    font-size: 1rem;
    color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-info {
        width: 90%;
    }

    .contact-form {
        margin: 0 24px;
    }
}


/* About Us Section */
#aboutus {
    background-color: #f0f0f0;
    /* Soft light background */
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#aboutus h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

#aboutus h2::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: #ff6f61;
    /* Accent color */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Paragraph Styling */
#aboutus p {
    font-size: 1.2rem;
    color: #777;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
    text-align: center;
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.service-card h3 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #0077cc;
    /* Primary color for headings */
    margin-bottom: 20px;
}

.service-card p {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Service Card Hover Effects */
.service-card:hover h3 {
    color: #ff6f61;
    /* Accent color */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff6f61;
    /* Accent Color */
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services {
        justify-content: center;
    }

    .service-card {
        width: 280px;
        margin-bottom: 30px;
    }

    #aboutus h2 {
        font-size: 2.5rem;
    }

    #aboutus p {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
        margin-bottom: 20px;
    }

    #aboutus h2 {
        font-size: 2rem;
    }

    #aboutus p {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 100%;
        padding: 20px;
    }

    #aboutus h2 {
        font-size: 1.8rem;
    }

    #aboutus p {
        font-size: 1rem;
    }
}



/* Footer Section */
#footer {
    background-color: #f9f9f9;
    /* Dark background */
    color: #333;
    /* White text */
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-container div {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-container h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #1878f3;
    /* Accent color */
}

.footer-container p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
}

.footer-container ul li a {
    color: #777;
    text-decoration: none;
}

.footer-container ul li a:hover {
    color: #1878f3;
    /* Hover effect color */
    text-decoration: underline;
}


.footer-services ul li a {
    color: #777;
}

.footer-services ul li a:hover {
    color: #1878f3;
    text-decoration: none;
}

/* Social Media Icons */
.footer-social ul {
    display: flex;
    gap: 20px;
}

.footer-social ul li a {
    font-size: 1.5rem;
    color: #777;
}

.footer-social ul li a:hover {
    color: #1878f3;
    /* Hover effect color */
}

/* Footer Bottom */
.footer-bottom {
    background-color: #fff;
    /* Darker background for footer bottom */
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
    color: #777;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-container div {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-container h3 {
        font-size: 1.6rem;
    }

    .footer-container ul li {
        font-size: 1rem;
    }

    .footer-social ul {
        justify-content: center;
    }
}


.footer-contact ul li a:hover {
    color: #1878f3;
    text-decoration: none;
}
/* Tech Support Page Styles */
.tech-support-section {
  padding: 80px 20px;
  background-color: #fff;
}

.tech-support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #f9fcff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 119, 204, 0.1);
}

.section-subtitle {
  font-size: 2.2rem;
  text-align: center;
  color: #0077cc;
  margin-bottom: 50px;
  position: relative;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #ff6f61;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.tech-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tech-item {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
  border-left: 5px solid #0077cc;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.tech-item i {
  font-size: 2.5rem;
  color: #0077cc;
  margin-bottom: 15px;
}

.tech-item h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.tech-item p,
.tech-item ul {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.tech-item ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1.8rem;
  }

  .tech-item {
    padding: 20px;
  }
}
